home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 …ember: Reference Library / Apple Developer Reference Library (December 1999) (Disk 1).iso / pc / what's new / sample code / quicktime / qteffects explode / main.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-10-19  |  601 b   |  27 lines

  1. /*
  2.     File:        main.h
  3.     
  4.     Contains:    Code to generate a QuickTime movie with a QuickTime video effect in it.
  5.     
  6.     Written by:    Scott Kuechle
  7.                 (based heavily on QuickTime SDK QTShowEffect sample code by Tim Monroe)
  8.  
  9.     Copyright:    © 1999 by Apple Computer, Inc. All rights reserved
  10.     
  11.     Change History (most recent first)
  12.     
  13.         <1>        9/25/99        srk        first file
  14.  
  15.  
  16. */
  17. #if TARGET_OS_MAC
  18.     static void InitMacToolbox (void);
  19.     static void Macintosh_DisplayMsg(char *msg);
  20. #endif
  21.  
  22. #if TARGET_OS_WIN32
  23.     static void Win32_DisplayMsg(char *msg);
  24. #endif
  25.  
  26. static void QuickTimeInit (void);
  27. void CheckError(OSErr error, char *msg);